home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CPPTASK.ARJ / CONOUT.HPP < prev    next >
C/C++ Source or Header  |  1991-08-21  |  471b  |  22 lines

  1. /*
  2.    CPPTask - A Multitasking Kernel For C++
  3.  
  4.    CONOUT.HPP - definitions for buffered console I/O
  5.  
  6.    Version 1.0 08-12-91
  7.  
  8.    Ported by Rich Smith from:
  9.  
  10.    Public Domain Software written by
  11.       Thomas Wagner
  12.       Patschkauer Weg 31
  13.       D-1000 Berlin 33
  14.       West Germany
  15. */
  16.  
  17. extern void init_conout(void);
  18. extern void end_conout(void);
  19. extern int tprintf(char *format, char *argptr);
  20. extern int tputs(char *buf);
  21. extern int tputch(int ch);
  22.